home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr37 / fdst103.zip / FDSITE.DOC next >
Text File  |  1995-02-28  |  7KB  |  147 lines

  1.  
  2.                            FDSITE Version 1.03
  3.  
  4.                          for Frontdoor Version 2
  5.  
  6.              Copyright (C) 1995 Donald Kerr 2:259/88@fidonet
  7.  
  8.                         Released 28th February 1995
  9.  
  10. ┌──────────────────────────────────────────────────────────────────────────┐
  11. │ ▒▒▒▒ Introduction ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  12. └──────────────────────────────────────────────────────────────────────────┘
  13.  
  14.  FDSITE is a program that changes the site information stored by Frontdoor.
  15.  You can configure FDSITE to change the name field, the location field or
  16.  both.   
  17.  
  18.  This is the ideal way to advertise some aspect of your BBS, or display 
  19.  a witty comment, to all mail callers!
  20.  
  21.  FDSITE was designed to be run as part of you daily BBS maintenance i.e. as 
  22.  part of your BBS batch file.  An example is given later in this document.
  23.  
  24. ┌──────────────────────────────────────────────────────────────────────────┐
  25. │ ▒▒▒▒ Disclaimer ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  26. └──────────────────────────────────────────────────────────────────────────┘
  27.  
  28.  I am responsible for nothing!   The program has been throughly tested and 
  29.  should present no problems when used as described.   
  30.  
  31. ┌──────────────────────────────────────────────────────────────────────────┐
  32. │ ▒▒▒▒ Installation ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  33. └──────────────────────────────────────────────────────────────────────────┘
  34.  
  35.  Installation is straightforward.   Just unzip the file FDSITE.ZIP to a
  36.  directory of your chosing e.g. "C:\FDSITE".   See 'Distribution' below for
  37.  a list of files included in the archive.
  38.  
  39. ┌──────────────────────────────────────────────────────────────────────────┐
  40. │ ▒▒▒▒ Operation ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  41. └──────────────────────────────────────────────────────────────────────────┘
  42.  
  43.  FDSITE uses one of two list files namely "NAME.LST" or "LOCATION.LST". 
  44.  These are plain ASCII files and must be located in the same directory as
  45.  the file "FDSITE.EXE".   They take the following format :-
  46.  
  47.  ;  --- NAME.LST or LOCATION.LST ------------------------------------------
  48.  ;
  49.  ;  Lines starting with a semicolon or a space are ignored
  50.  ;
  51.  ;  Line 1 and all subsequent lines contain the text that you
  52.  ;  want to display.   Names can be up to 49 characters long 
  53.  ;  and locations a maximum of 39 although only 30 and 32 
  54.  ;  characters respectively are displayed on Frontdoor's screen.
  55.  ;  The remaining characters are transmitted and can be viewed in 
  56.  ;  Frontdoor's log file.
  57.  ;
  58.  Firelink Glasgow Scotland
  59.  Firelink - General and Fire Brigades BBS
  60.  Firelink - for Pascalnet
  61.  Firelink BBS
  62.  ;
  63.  ;  -----------------------------------------------------------------------
  64.  
  65.  FDSITE takes one of three command line parameters i.e. either "NAME", 
  66.  "LOCATION" or "REG".   These can be shortened to "N", "L" or "R" if you 
  67.  prefer.   Additionally, a numerical parameter in the range 1 to 32767 
  68.  can be added after the parameter Name or Location e.g. "FDSITE NAME 6".
  69.  This would cause FDSITE to use the given line number and will move the 
  70.  internal 'next line' variable to that number plus one.   32767 is the 
  71.  maximum number of lines your list file can have and I challenge you to 
  72.  exceed it!
  73.  
  74.  The parameter "NAME" will cause FDSITE to change the contents of the 
  75.  name field as displayed by Frontdoor according to the contents of the list
  76.  file "NAME.LST".   "LOCATION" will cause FDSITE to change the location 
  77.  details.   "REG" displays a short screen which gives information on 
  78.  registering the program.   There is also registration information below.
  79.  
  80.  Ideally, FDSITE should be run from your BBS batch file.   Just add the
  81.  following lines to your batch file as part of your daily maintenance:-
  82.  
  83.  REM -----------------------------------------
  84.  C:
  85.  CD\FDSITE
  86.  FDSITE NAME
  87.  FDSITE LOCATION
  88.  REM -----------------------------------------
  89.  
  90.  The following line is required in your AUTOEXEC.BAT file to allow FDSITE
  91.  to locate the file SETUP.FD :-
  92.  
  93.  "SET FD=C:\FD" where "C:\FD" is the location of your version of SETUP.FD.
  94.  
  95. ┌───────────────────────────────────────────────────────────────────────────┐
  96. │ ▒▒▒▒ Distribution ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  97. └───────────────────────────────────────────────────────────────────────────┘
  98.  
  99.  You are encouraged to copy this program and share it with others.  If you
  100.  can personally pass this program to another BBS I would be most grateful.
  101.  
  102.  Please ensure that the archive contains the following files:-
  103.  
  104.         FDSITE.EXE   - The main program.
  105.         FDSITE.DOC   - This documentation file.
  106.         NAME.LST     - A sample name list file.
  107.         LOCATION.LST - A sample location list file.
  108.         FILE_ID.DIZ  - A description file.
  109.  
  110. ┌──────────────────────────────────────────────────────────────────────────┐
  111. │ ▒▒▒▒ Registration ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  112. └──────────────────────────────────────────────────────────────────────────┘
  113.  
  114.  Registration is not a requirement for non-commercial sites but would be 
  115.  appreciated if your financial situation permits.   Commercial sites must
  116.  register if they use this utility in any regular way i.e. as part of a 
  117.  daily or weekly maintenance routine.   Non-commercial sites may send a
  118.  postcard of their home town as an alternative to the registration fee.
  119.  
  120.  The cost of registering this version is only five UK pounds or equivalent.
  121.  
  122.  Send your registration fee to - Donald Kerr
  123.                                  2 Rowans Gardens
  124.                                  Bothwell
  125.                                  Glasgow G71 8BE
  126.                                  United Kingdom
  127.  
  128.  The use of other small utilities written by the author is included in the 
  129.  fee.
  130.  
  131. ┌──────────────────────────────────────────────────────────────────────────┐
  132. │ ▒▒▒▒ Support ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  133. └──────────────────────────────────────────────────────────────────────────┘
  134.  
  135.  Help is available by Netmail from the Fidonet address 2:259/88   A short 
  136.  list of other programs written by the author may be freqed as "PROGS" from 
  137.  the same address, or you may call the Firelink BBS on +44-1698-854685 and 
  138.  download the File "PROGS.TXT".
  139.  
  140. ┌──────────────────────────────────────────────────────────────────────────┐
  141. │ ▒▒▒▒ Ideas? ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  142. └──────────────────────────────────────────────────────────────────────────┘
  143.  
  144.  If you have any ideas for short utilities connected with Comms or BBS then 
  145.  please let me know.
  146.  
  147.